home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.06 Jun 93 / C Shell XCMD / FlashObject.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-20  |  457 b   |  27 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  
  3.   Flash.c
  4.  
  5.      A starter main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright © 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "flApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     flApp    *theApp;                    
  20.  
  21.     theApp = new flApp;
  22.     
  23.     theApp->IflApp();
  24.     theApp->XcmdRun();
  25.     theApp->Exit();
  26. }
  27.